public class RegularExtra extends Extra {
public RegularExtra(String label, double price, Order order) {
super(label, price, order);
}
public Double getPrice() {
return this.price+order.getPrice();
}
}